home *** CD-ROM | disk | FTP | other *** search
- // Copyright (C) 1997-2002 Alias|Wavefront,
- // a division of Silicon Graphics Limited.
- //
- // The information in this file is provided for the exclusive use of the
- // licensees of Alias|Wavefront. Such users have the right to use, modify,
- // and incorporate this code into other products for purposes authorized
- // by the Alias|Wavefront license agreement, without fee.
- //
- // ALIAS|WAVEFRONT DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
- // INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
- // EVENT SHALL ALIAS|WAVEFRONT BE LIABLE FOR ANY SPECIAL, INDIRECT OR
- // CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
- // DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
- // TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
- // PERFORMANCE OF THIS SOFTWARE.
- //
- //
- // Alias|Wavefront Script File
- //
- // Creation Date: May 21, 1997
- // Author: sw
- //
- // Procedure Name:
- // AEshaderGlowTemplate
- //
- // Description Name;
- // Creates the attribute editor controls for the shaderGlow Node
- //
- // Input Value:
- // nodeName
- //
- // Output Value:
- // None
- //
-
-
- //
- // Procedure Name:
- // AEshaderGlowTemplate
- //
-
- global proc AEshaderGlowTemplate ( string $nodeName )
- {
- AEswatchDisplay $nodeName;
- editorTemplate -beginScrollLayout;
- editorTemplate -beginLayout "Common Shader Glow Attributes" -collapse 0;
- editorTemplate -addControl "glowType";
- editorTemplate -addControl "haloType";
- editorTemplate -addControl "quality";
- editorTemplate -addControl "threshold";
- editorTemplate -addControl "radialFrequency";
- editorTemplate -addControl "starPoints";
- editorTemplate -addControl "rotation";
- editorTemplate -addControl "autoExposure";
- editorTemplate -endLayout;
-
- editorTemplate -beginLayout "Glow Attributes";
- editorTemplate -addControl "glowColor";
- editorTemplate -addControl "glowIntensity";
- editorTemplate -addControl "glowSpread";
- editorTemplate -addControl "glowEccentricity";
- editorTemplate -addControl "glowRadialNoise";
- editorTemplate -addControl "glowStarLevel";
- editorTemplate -addControl "glowOpacity";
- editorTemplate -addControl "glowRingIntensity";
- editorTemplate -addControl "glowRingFrequency";
- editorTemplate -addControl "glowFilterWidth";
- editorTemplate -endLayout;
-
- editorTemplate -beginLayout "Halo Attributes";
- editorTemplate -addControl "haloColor";
- editorTemplate -addControl "haloIntensity";
- editorTemplate -addControl "haloSpread";
- editorTemplate -addControl "haloEccentricity";
- editorTemplate -addControl "haloRadialNoise";
- editorTemplate -addControl "haloStarLevel";
- editorTemplate -addControl "haloOpacity";
- editorTemplate -addControl "haloRingIntensity";
- editorTemplate -addControl "haloRingFrequency";
- editorTemplate -addControl "haloFilterWidth";
- editorTemplate -endLayout;
-
-
- // include/call base class/node attributes
- AEdependNodeTemplate $nodeName;
-
- editorTemplate -addExtraControls;
- editorTemplate -endScrollLayout;
- }
-